home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / editors / AME / Rexx / cmdshell.ame < prev    next >
Text File  |  1994-02-01  |  229b  |  11 lines

  1. /* $VER: Cmdshell 37.1 (21.2.93) : Arexx Command Shell */
  2.  
  3. options results
  4. rc = open('file',"*",'R')
  5. do forever
  6.     line=readln('file')
  7.     if EOF('file') then leave
  8.     interpret line
  9.     end
  10. say closing file
  11. rc = close ('file')